﻿@font-face {
    font-family: GothamBlack;
    src: url(../../../fonts/Gotham/GothamBlack.otf);
}

@font-face {
    font-family: GothamBold;
    src: url(../../../fonts/Gotham/GothamBold.otf);
}

@font-face {
    font-family: GothamBold;
    src: url(../../../fonts/Gotham/GothamBold.ttf);
}

@font-face {
    font-family: GothamBook;
    src: url(../../../fonts/Gotham/GothamBook.ttf);
}

@font-face {
    font-family: GothamMedium;
    src: url(../../../fonts/Gotham/GothamMedium.ttf);
}

body {
    background-color: var(--backgroundColorHomeInteractiveTheme);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 30px;
    height: 30px;
    background-color: #e6e6e6;
    border-radius: 50%;
    border: 1px solid #000;
    appearance: none;
    outline: none;
    cursor: pointer;
    box-shadow: inset 4px 4px 4px -1px rgb(0 0 0 / 15%), inset -4px -4px 4px -1px rgb(255 255 255);
    margin-top: 0;
}

.form-check-input:checked {
    box-shadow: 4px 4px 10px -1px rgba(0, 0, 0, 0.15),
        -4px -4px 10px -1px rgba(255, 255, 255, 0.7);
}

input[type=checkbox]:checked::before {
    opacity: 1;
    border-color: #00B2C1;
}

input[type=checkbox]::before {
    position: relative;
    content: "";
    display: block;
    top: 5px;
    left: 11px;
    width: 8px;
    height: 14px;
    border-style: solid;
    border-color: #CDCDCD;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 1;
}

.form-check-label form__check--label {
    margin-left: 20px;
}

.form__check--label-text {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--inputCheckDataUserFontColor);
    font-family: var(--inputCheckDataUserFontFamily);
    margin-left: 24px;
}

.own-btn-primary {
    margin-top: 26px;
    width: 100%;
    border: none;
    font-size: 20px;
    border-radius: var(--buttonRequestBorderRadius);
    background: var(--buttonRequestBackgroundColor);
    box-shadow: var(--buttonRequestBoxShadow);
    text-transform: uppercase;
    color: var(--buttonRequestInsideTextColor);
    font-family: var(--buttonRequestInsideTextFont);
    padding: 8px 0;
}

.own-btn-primary:hover {
    box-shadow: inset 4px 4px 7px rgb(126 126 126 / 40%), inset -4px -4px 9px #ffffffd9;
}

.footer__information {
    position: absolute;
    width: 100%;
    display: flex;
    bottom: 20px;
    justify-content: space-between;
    padding: 0px 10%;
}

.footer__information--app {
    align-items: center;
    display: flex;
    width: 100%;
    color: var(--footerInformationTextColor);
    font-size: 20px;
    font-family: var(--footerInformationTextFontFamily);
    margin-top: 25px;
}

.footer__information--c1 {
    margin: 0 5%;
}

.footer__information--c1 > p:nth-child(1){
    margin-bottom: 22px;
}

.footer__information--c1 > p:nth-child(2){
    margin-bottom: 0;
}

.footer__information--c2 > p:nth-child(1) {
    margin-bottom: 22px;
}

.footer__information--c2 > p:nth-child(2) {
    margin-bottom: 0;
}

.footer__information > img {
    width: 100%;
    max-width: 335px;
    margin-right: 9vw;
	display: none;
}

.footer__img--complement {
    height: 205px;
    overflow: hidden;
}

.footer__container {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.footer__container > img {
    position: absolute;
    z-index: -1;
    margin-bottom: 145px;
    bottom: 0;
    width: 700px;
	right: 1290px;
}

.line__separator {
    border: var(--lineSeparatorBorder);
    border-radius: var(--lineSeparatorBorderRadius);
    box-shadow: var(--lineaSeparatorBoxShadow);
    margin-left: 0;
    /*width: 31vw;*/
}

@keyframes  ownFadeIn {
    0% {
        opacity: 0;
        display: none;
    }

    100% {
        opacity: 1;
        display: block;
    }
}

@media (max-width: 1640px), (max-height: 790px) {
    .footer__information {
        padding: 0;
        bottom: 0;
    }

    .footer__container > img {
        width: 495px;
        margin-bottom: 150px;
        margin-left: 20px;
		right: 900px;
    }

    .footer__img--complement {
        height: 200px;
    }

    .footer__information--app {
        margin-top: 20px;
        font-size: 18px;
    }

    .footer__information > img {
        margin-right: 10vw;
        margin-bottom: 10px;
    }
}

@media (max-width: 1000px) {
    .footer__information {
        padding: 20px 20px 5px 20px;
        bottom: 0;
    }

    .footer__container > img {
        display: none;
    }

    .footer__img--complement {
        height: 260px;
    }

    .footer__information--app {
        font-size: 12px;
        margin-top: 0;
        width: 80%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .footer__information > img {
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 140px;
    }

    .footer__information--c1 {
        margin: 0px 0 15px 0;
    }

    .footer__information--c1 > p:nth-child(1) {
        margin-bottom: 0;
    }

    .footer__information--c2 > p:nth-child(1) {
        margin-bottom: 0;
    }

    .footer__information--app > div > p {
        margin-bottom: 10px !important;
    }

    .show, .modal-open {
        padding-right: 0 !important;
    }
}


